﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[System.Serializable]
public class CVRVideoPlayerPlaylistEntity
{
    public string playerId;
    public string videoUrl;
    public string videoTitle;
    public int introEndInSeconds;
    public int creditsStartInSeconds;
}


